div.wrapper {
   overflow: visible;
}

main.main {
   padding-top: 2rem;
   overflow: visible;
}
@media (max-width: 1400px) {
   main.main {
      padding-top: 1.4rem;
   }
}
@media (max-width: 768px) {
   main.main {
      padding-top: 0.2rem;
   }
}

.title {
   grid-column: 1/-1;
   margin-bottom: 1.5rem;
}

.cart {
   grid-column: 1/6;
   padding-right: 4rem;
}
@media (max-width: 1800px) {
   .cart {
      grid-column: 1/5;
      padding-right: 1rem;
   }
}
@media (max-width: 1400px) {
   .cart {
      padding-right: 0;
   }
}
@media (max-width: 1024px) {
   .cart {
      grid-column: 1/-1;
   }
}
.cart__list {
   display: flex;
   flex-direction: column;
   gap: 2rem;
}
.cart__item {
   display: flex;
   gap: 2.4rem;
   padding-bottom: 1.2rem;
   border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
@media (max-width: 1400px) {
   .cart__item {
      padding-bottom: 0.8rem;
      gap: 1rem;
   }
}
@media (max-width: 768px) {
   .cart__item {
      gap: 0.8rem;
   }
}
.cart__img {
   display: block;
   height: auto;
   aspect-ratio: 1/1;
   width: 12rem;
   overflow: hidden;
   border: 0.5px solid #1e5540;
   border-radius: 24px;
}
@media (max-width: 1400px) {
   .cart__img {
      width: 9rem;
   }
}
@media (max-width: 768px) {
   .cart__img {
      width: 5rem;
      height: 5rem;
   }
}
.cart__img img {
   object-fit: cover;
   object-position: center;
}
.cart__info {
   display: flex;
   flex-direction: column;
   flex: 1 0 0;
   gap: 1.2rem;
}
@media (max-width: 1400px) {
   .cart__info {
      gap: 0.6rem;
   }
}
@media (max-width: 768px) {
   .cart__info {
      gap: 0.5rem;
   }
}
.cart__actions {
   display: flex;
   justify-content: space-between;
}
.cart__actions button {
   font-weight: 400;
   font-size: 0.6rem;
   text-decoration: underline;
   text-underline-offset: 0.15rem;
   opacity: 0.8;
   border: none;
   background: none;
   color: #000;
}
@media (max-width: 768px) {
   .cart__actions button {
      font-size: 0.5rem;
   }
}
.cart__title {
   display: inline-block;
}
@media (max-width: 768px) {
   .cart__title {
      font-size: 0.8rem;
   }
}
.cart__style {
   margin-bottom: 0.8rem;
   font-size: 0.8rem;
}
@media (max-width: 1400px) {
   .cart__style {
      font-size: 0.7rem;
   }
}
@media (max-width: 1024px) {
   .cart__style {
      font-size: 0.6rem;
   }
}
@media (max-width: 768px) {
   .cart__style {
      font-size: 0.5rem;
      margin-bottom: 0.5rem;
   }
}
.cart__stock {
   font-size: 0.6rem;
   letter-spacing: -0.03em;
   color: #1e5540;
}
@media (max-width: 768px) {
   .cart__stock {
      font-size: 0.5rem;
   }
}
.cart__price {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
}
.cart__price-actual {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: -0.03em;
   position: relative;
   color: #292522;
}
@media (max-width: 1400px) {
   .cart__price-actual {
      font-size: 0.8rem;
   }
}
@media (max-width: 768px) {
   .cart__price-actual {
      font-size: 0.7rem;
   }
}
.cart__price-actual:has(.cart__price-old) {
   color: #f23c20;
}
.cart__price-old {
   font-weight: 600;
   font-size: 0.8rem;
   letter-spacing: -0.03em;
   opacity: 0.5;
   text-decoration: line-through;
   position: absolute;
   display: block;
   top: 0;
   right: 0;
   transform: translate(100%, -20%);
   color: #292522;
}
@media (max-width: 1400px) {
   .cart__price-old {
      font-size: 0.6rem;
   }
}
@media (max-width: 768px) {
   .cart__price-old {
      font-size: 0.5rem;
   }
}
.cart__volume {
   font-weight: 600;
   font-size: 0.8rem;
   opacity: 0.8;
   color: #292522;
   padding: 0 0.5rem 0.2rem 0;
}
@media (max-width: 1400px) {
   .cart__volume {
      font-size: 0.6rem;
      padding: 0;
   }
}
@media (max-width: 768px) {
   .cart__volume {
      font-size: 0.5rem;
   }
}

.quantity {
   display: flex;
   align-items: center;
   padding: 0.6rem 1rem;
   border: 1px solid #000;
   border-radius: 90px;
   gap: 0.2rem;
   width: fit-content;
}
@media (max-width: 1024px) {
   .quantity {
      padding: 0.4rem 0.8rem;
   }
}
@media (max-width: 768px) {
   .quantity {
      justify-content: space-between;
      width: 100%;
   }
}
.quantity__minus,
.quantity__plus {
   width: 1.2rem;
   height: 1.2rem;
   background: none;
   border: none;
}
@media (max-width: 768px) {
   .quantity__minus,
   .quantity__plus {
      width: 0.8rem;
      height: 0.8rem;
   }
}
.quantity__num {
   text-align: center;
   width: 3rem;
   background: none;
   border: none;
   font-weight: 600;
   font-size: 0.7rem;
   color: #000;
}
@media (max-width: 768px) {
   .quantity__num {
      font-size: 0.5rem;
      flex: 1 0 0;
      width: 100%;
   }
}
.quantity__num::-webkit-outer-spin-button,
.quantity__num::-webkit-inner-spin-button {
   -webkit-appearance: none;
}

.totals-sticky-wrapper {
   grid-column: 6/-1;
   padding-left: 1rem;
   height: 100%;
}
@media (max-width: 1800px) {
   .totals-sticky-wrapper {
      padding-left: 0;
   }
}
@media (max-width: 1400px) {
   .totals-sticky-wrapper {
      grid-column: 5/-1;
      padding-left: 3rem;
   }
}
@media (max-width: 1024px) {
   .totals-sticky-wrapper {
      padding-left: 0;
      grid-column: 1/-1;
   }
}
.totals {
   position: sticky;
   top: 4.8rem;
   background: #f6f8f7;
   border-radius: 24px;
   padding: 2rem;
   height: fit-content;
}
@media (max-width: 1400px) {
   .totals {
      top: 4.4rem;
      padding: 2rem 1.2rem;
   }
}
@media (max-width: 1024px) {
   .totals {
      position: static;
      padding: 2rem;
   }
}
@media (max-width: 768px) {
   .totals {
      padding: 1.6rem 1.2rem;
   }
}
.totals .result {
   display: none;
   flex-direction: column;
   gap: 2rem;
   height: 100%;
}
@media (max-width: 1400px) {
   .totals .result {
      gap: 1.2rem;
   }
}
@media (max-width: 1024px) {
   .totals .result {
      gap: 1.6rem;
   }
}
@media (max-width: 768px) {
   .totals .result {
      gap: 1.5rem;
   }
}
.totals .result__promo {
   position: relative;
}
.totals .result__inp::placeholder {
   color: #1e5540;
   text-transform: uppercase;
   opacity: 0.8;
}
.totals .result__inp {
   border: 0.5px solid #1e5540;
   border-radius: 10px;
   padding: 0.8rem 2.4rem 0.8rem 0.5rem;
   background: none;
   width: 100%;
   font-weight: 600;
   font-size: 0.6rem;
   line-height: 120%;
   color: #1e5540;
   text-transform: uppercase;
}
@media (max-width: 768px) {
   .totals .result__inp {
      font-size: 0.5rem;
   }
}
.totals .result__promo-btn {
   width: 1.4rem;
   height: 1.4rem;
   padding: 0.2rem;
   background: #1e5540;
   border: none;
   border-radius: 50%;
   position: absolute;
   top: 50%;
   right: 0.5rem;
   transform: translateY(-50%);
}
.totals .result__total {
   display: flex;
   flex-direction: column;
}
.totals .result__total-item {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
}
.totals .result__summ {
   margin-bottom: 1.6rem;
}
@media (max-width: 1400px) {
   .totals .result__summ {
      margin-bottom: 1.2rem;
   }
}
.totals .result__total-left-col {
   font-weight: 400;
}
.totals .result__total-right-col {
   font-weight: 600;
}
.totals .result__sale {
   padding-bottom: 1.3rem;
   margin-bottom: 0.8rem;
   border-bottom: 1px solid #000;
}
@media (max-width: 1400px) {
   .totals .result__sale {
      padding-bottom: 1.2rem;
   }
}
.totals .result__price-title {
   font-weight: 600;
}
.totals .result__to-order {
   display: grid;
   grid-template-columns: 5rem 1fr;
   gap: 3rem;
   justify-content: space-between;
   align-items: center;
}
@media (max-width: 1400px) {
   .totals .result__to-order {
      grid-template-columns: 4.5rem 1fr;
      gap: 1rem;
   }
}
@media (max-width: 768px) {
   .totals .result__to-order {
      grid-template-columns: 1fr;
   }
}
@media (max-width: 768px) {
   .totals .result__qr {
      display: none;
   }
}
.totals .result__qr div {
   width: 100%;
   aspect-ratio: 1/1;
   margin-bottom: 0.4rem;
}
.totals .result__qr p {
   font-weight: 600;
   font-size: 0.6rem;
   text-align: center;
   opacity: 0.6;
}
@media (max-width: 1400px) {
   .totals .result__qr p {
      font-size: 0.5rem;
   }
}
.totals .result__buttons {
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}
@media (max-width: 1400px) {
   .totals .result__buttons {
      gap: 0.6rem;
   }
}
@media (max-width: 768px) {
   .totals .result__buttons {
      gap: 0.6rem;
   }
}
.totals .result__by-tg {
   width: 100%;
   border-radius: 90px;
   background: #1e5540;
   font-size: 0.7rem;
   letter-spacing: -0.03em;
   color: #fff;
   line-height: 1;
   padding: 0.8rem 1.2rem;
   text-align: center;
   font-weight: 600;
}
@media (max-width: 1400px) {
   .totals .result__by-tg {
      font-size: 0.6rem;
   }
}
@media (max-width: 1024px) {
   .totals .result__by-tg {
      padding: 0.6rem 0.4rem;
   }
}
@media (max-width: 768px) {
   .totals .result__by-tg {
      font-size: 0.5rem;
      width: 100%;
      min-width: 0;
   }
}
.totals .result__by-site {
   width: 100%;
   border-radius: 90px;
   background: none;
   border: 1px solid #000;
   font-size: 0.7rem;
   letter-spacing: -0.03em;
   color: #000;
   line-height: 1;
   padding: 0.8rem 1.2rem;
   text-align: center;
   font-weight: 600;
}
@media (max-width: 1400px) {
   .totals .result__by-site {
      font-size: 0.6rem;
   }
}
@media (max-width: 1024px) {
   .totals .result__by-site {
      padding: 0.6rem 0.4rem;
   }
}
@media (max-width: 768px) {
   .totals .result__by-site {
      font-size: 0.5rem;
      width: 100%;
      min-width: 0;
   }
}
.totals .order {
   display: none;
   flex-direction: column;
}
.totals .order__title {
   margin-bottom: 2rem;
}
@media (max-width: 1400px) {
   .totals .order__title {
      margin-bottom: 1.6rem;
   }
}
@media (max-width: 1024px) {
   .totals .order__title {
      margin-bottom: 2rem;
   }
}
@media (max-width: 768px) {
   .totals .order__title {
      margin-bottom: 1.6rem;
   }
}
.totals .order .checkout {
   display: flex;
   flex-direction: column;
   gap: 1.6rem;
   margin-bottom: 1.6rem;
}
@media (max-width: 1400px) {
   .totals .order .checkout {
      gap: 1.2rem;
      margin-bottom: 1.2rem;
   }
}
@media (max-width: 1024px) {
   .totals .order .checkout {
      gap: 1.6rem;
      margin-bottom: 1.6rem;
   }
}
@media (max-width: 768px) {
   .totals .order .checkout {
      gap: 1.2rem;
      margin-bottom: 1.2rem;
   }
}
.totals .order .checkout__field {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
}
.totals .order .checkout__field input,
.totals .order .checkout__field textarea {
   border: 1px solid #1e5540;
   border-radius: 60px;
   width: 100%;
   padding: 0.7rem 1.5rem;
   font-weight: 600;
   font-size: 0.7rem;
   letter-spacing: -0.03em;
   color: #000;
   background: none;
}
@media (max-width: 1400px) {
   .totals .order .checkout__field input,
   .totals .order .checkout__field textarea {
      padding: 0.5rem 1.5rem;
      font-size: 0.6rem;
   }
}
@media (max-width: 1024px) {
   .totals .order .checkout__field input,
   .totals .order .checkout__field textarea {
      padding: 0.7rem 1.5rem;
      font-size: 0.7rem;
   }
}
@media (max-width: 768px) {
   .totals .order .checkout__field input,
   .totals .order .checkout__field textarea {
      padding: 0.5rem 1.5rem;
      font-size: 0.6rem;
   }
}
.totals .order .checkout__field textarea {
   resize: none;
   border-radius: 24px;
   scrollbar-width: none;
}
.totals .order .checkout__field label {
   background: #f6f8f7;
   font-weight: 600;
   font-size: 0.6rem;
   letter-spacing: -0.03em;
   color: #1e5540;
   position: absolute;
   top: 0;
   left: 1.5rem;
   transform: translateY(-50%);
   padding: 0 0.2rem;
   line-height: 1;
}
.totals .order .checkout__field.error input,
.totals .order .checkout__field.error textarea {
   background: #fff5f5;
   border-color: #f23c20;
}
.totals .order .checkout__field.error label {
   color: #f23c20;
}
.totals .order .checkout__error {
   font-weight: 600;
   font-size: 0.6rem;
   letter-spacing: -0.03em;
   color: #f23c20;
}
.totals .order__summ {
   font-weight: 600;
   color: #1e5540;
   margin-bottom: 1.6rem;
}
@media (max-width: 1400px) {
   .totals .order__summ {
      margin-bottom: 1.2rem;
   }
}
@media (max-width: 1024px) {
   .totals .order__summ {
      margin-bottom: 1.6rem;
      font-size: 1rem;
   }
}
@media (max-width: 768px) {
   .totals .order__summ {
      font-size: 0.7rem;
      margin-bottom: 1.2rem;
   }
}
.totals .order__btns {
   display: flex;
   gap: 1.6rem;
   justify-content: space-between;
}
@media (max-width: 1400px) {
   .totals .order__btns {
      gap: 1.2rem;
   }
}
@media (max-width: 1024px) {
   .totals .order__btns {
      gap: 1.6rem;
   }
}
@media (max-width: 768px) {
   .totals .order__btns {
      gap: 1.2rem;
   }
}
.totals .order__back-btn {
   width: 7.5rem;
   min-width: 0;
   gap: 0;
   flex-shrink: 0;
   background: none;
}
@media (max-width: 768px) {
   .totals .order__back-btn {
      width: auto;
   }
}
.totals .order__back-btn p {
   font-size: 0.7rem;
   padding-left: 0;
   padding-right: 0.8rem;
   font-weight: 500;
   width: 100%;
   text-align: center;
}
@media (max-width: 768px) {
   .totals .order__back-btn p {
      display: none;
   }
}
@media (max-width: 768px) {
   .totals .order__back-btn div {
      padding: 0.5rem;
   }
}
.totals .order__confirm-btn {
   background: #1e5540;
   color: #fff;
   font-size: 0.7rem;
   width: 100%;
   flex-shrink: 1;
}
.totals .result.active,
.totals .order.active {
   display: flex;
}

.border-slider.leaders {
   grid-column: 1/-1;
}

.border-slider.leaders > svg {
   position: absolute;
   width: 0;
   height: 0;
}

/*# sourceMappingURL=cart.css.map */
